home *** CD-ROM | disk | FTP | other *** search
/ Palm Utilities / Palm_Utilities_CD-ROM_2001_2001.iso / files / utils misc / Bachmann Print Manager 2.01b / BachmannPrintManager.exe / SamplePrints / Src / pms.h < prev   
Encoding:
C/C++ Source or Header  |  1999-09-02  |  662 b   |  32 lines

  1.  
  2. /*
  3.    PMS.H
  4.    PageMgr Sample Application declarations.
  5.    Greg Winton
  6.    Bachmann Software and Services, 1998
  7. */
  8.  
  9. // Prevent multiple includes
  10. #ifndef PMS_H
  11. #define PMS_H
  12.  
  13. #define  PMS_FILE_CREATOR   ('SMPT')
  14. #define  PMS_FILE_VERSION   (0x01)
  15. #define  PMS_PREF_ID        (0x02)
  16. #define  PMS_PREF_VERSION   (0x01)
  17.  
  18. #define  PALMOS_VERSION_20 (0x02000000)
  19.  
  20. #define  PALMOS_VERSION    (PALMOS_VERSION_20)
  21.  
  22. /*
  23.    MainFormEventHandler (EventPtr)
  24.    Parms:   pEvent   - event to be handled.
  25.    Return:  true  - handled (successfully or not)
  26.             false - not handled
  27. */
  28. Boolean  MainFormEventHandler (EventPtr pEvent);
  29.  
  30. #endif
  31.  
  32.